.overboost {
  text-align: center;
  padding: 40px 0;
}
.overboost img {
  max-width: 100%;
}
.overboost__box {
  display: none;
}
.overboost .text--note {
  margin-top: 8px;
}
.overboost__text {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}
@media (min-width: 996px) {
  .overboost {
    padding: 80px 0;
  }
  .overboost h2 span {
    display: block;
  }
  .overboost__imgxs {
    display: none;
  }
  .overboost__box {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 2200px;
  }
  .overboost__box__bg {
    position: relative;
    z-index: 1;
  }
  .overboost__box__bg img {
    vertical-align: bottom;
  }
  .overboost__box__bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    background: url("https://storage-asset.msi.com/ua/picture/NB/GE78/bg-250w_.png") center center no-repeat ;
    background-size: cover;
    animation: 2s overboostbg infinite;
  }
  .overboost__box__item {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 4;
  }
  .overboost__box__item-1 {
    right: 64%;
    width: 23%;
  }
  .overboost__box__item-2 {
    left: 65%;
  }
}

@keyframes overboostbg {
  from, to {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}